home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / pbmplus / pgm / pgmbentley.c < prev    next >
C/C++ Source or Header  |  1994-08-01  |  1KB  |  64 lines

  1. /* pgmbentley.c - read a portable graymap and smear it according to brightness
  2. **
  3. ** Copyright (C) 1990 by Wilson Bent (whb@hoh-2.att.com)
  4. **
  5. ** Permission to use, copy, modify, and distribute this software and its
  6. ** documentation for any purpose and without fee is hereby granted, provided
  7. ** that the above copyright notice appear in all copies and that both that
  8. ** copyright notice and this permission notice appear in supporting
  9. ** documentation.  This software is provided "as is" without express or
  10. ** implied warranty.
  11. */
  12.  
  13. #include <stdio.h>
  14. #include "pgm.h"
  15.  
  16. void
  17. main( argc, argv )
  18.     int argc;
  19.     char* argv[];
  20.     {
  21.     FILE* ifp;
  22.     gray maxval;
  23.     gray** gin;
  24.     gray** gout;
  25.     int argn, rows, cols, row;
  26.     register int brow, col;
  27.     char* usage = "[pgmfile]";
  28.  
  29.     pgm_init( &argc, argv );
  30.  
  31.     argn = 1;
  32.  
  33.     if ( argn < argc )
  34.     {
  35.     ifp = pm_openr( argv[argn] );
  36.     ++argn;
  37.     }
  38.     else
  39.     ifp = stdin;
  40.  
  41.     if ( argn != argc )
  42.     pm_usage( usage );
  43.  
  44.     gin = pgm_readpgm( ifp, &cols, &rows, &maxval );
  45.     pm_close( ifp );
  46.     gout = pgm_allocarray( cols, rows );
  47.  
  48. #define N 4
  49.     for ( row = 0; row < rows; ++row )
  50.     for ( col = 0; col < cols; ++col )
  51.         {
  52.         brow = row + (int) (gin[row][col]) / N;
  53.         if ( brow >= rows )
  54.         brow = rows - 1;
  55.         gout[brow][col] = gin[row][col];
  56.         }
  57.  
  58.     pgm_writepgm( stdout, gout, cols, rows, maxval, 0 );
  59.     pm_close( stdout );
  60.     pgm_freearray( gout, rows );
  61.  
  62.     exit( 0 );
  63.     }
  64.